home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / modelers / chmsthtc / chmsthtc.lzh / Chemesthetics / Source / Source.LZH / pdomain / mtwx_defs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-29  |  1.0 KB  |  37 lines

  1. /***************************************************************************
  2. * mtwx_defs.h: METALWORX_DEFINES, definiert Strukturen und Konstanten, die *
  3. *           in meinen eigenen Routinen benutzt werden           *
  4. *                                       *
  5. * created: 29-Jun-91 Mtwx                           *
  6. * updated: 30-Aug-91 Mtwx                           *
  7. ***************************************************************************/
  8.  
  9. #ifndef MTWX_DEFS
  10.  
  11. /* ------------------------------- defines ------------------------------ */
  12.  
  13. #define MTWX_DEFS
  14. /* Defines fⁿr Waitpointer-Typen */
  15.  
  16. #define NORMALWAIT 0        /* `normales` Please Wait */
  17. #define DISKWAIT 1        /* Diskette mit Wait Text */
  18.  
  19. /* Funktionen */
  20. #define Waitpointer_Off(win) ClearPointer(win)
  21.  
  22. /* ------------------------------- type definitions --------------------- */
  23.  
  24. struct WNachricht
  25. {
  26.   int Klasse;
  27.   unsigned short GadgetID;
  28.   unsigned short Code;    /* fⁿr Menⁿauswertung */
  29. };
  30.  
  31. /* ------------------------------- prototypes --------------------------- */
  32.  
  33. #ifndef EX_LIB_PROTOS
  34. #include <exlibprotos.h>
  35. #endif
  36. #endif    /* MTWX_DEFS */
  37.